GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 8f319c...88a45f )
by
unknown
05:20
created

UserInterface.js ➔ constructor   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 9
c 1
b 0
f 0
nc 1
dl 0
loc 13
rs 9.95
nop 0
1
/**
2
 * This file is part of the O2System Venus UI Framework package.
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 *
7
 * @author         Steeve Andrian Salim
8
 * @copyright      Copyright (c) Steeve Andrian Salim
9
 */
10
// ------------------------------------------------------------------------
11
12
import $ from "jquery";
13
import Popper from 'popper.js';
14
import 'bootstrap';
15
import 'nicescroll';
16
import "./UserInterface.scss";
17
18
/**
19
 * Class UserInterface
20
 * 
21
 * @author  Steeve Andrian Salim
22
 */
23
export default class UserInterface {
24
25
    /**
26
     * UserInterface.constructor
27
     */
28
    constructor() {
29
        window.Popper = Popper.default;
30
        window.$ = window.jQuery = $;
31
32
        $('[data-toggle="popover"]').popover();
33
        $('[data-toggle="tooltip"]').tooltip();
34
35
        $('.nicescroll').niceScroll({
36
            cursorcolor: "#000",
37
            cursoropacitymax: 0.5,
38
            cursorwidth: "3px"
39
        });
40
    }
41
}